home *** CD-ROM | disk | FTP | other *** search
- ;
- ; GIFV.SLD
- ; This script will take ALL GIF files in the current DIR that are INTERLACED
- ; and re-write them so that they are NON-Interlaced GIF Files. It
- ; will also (for the heck of it!) write out a BMP file of the same
- ; picture for use within Windows. It also shows how to use the SKIPNext
- ; command. SkipPrev uses the same concept!
- ;
- slide-type-normal
- change-path *.gif
- :loop
- ifint :doint
- skipnext :exit
- goto :loop
- :doint
- LOADNEXT :EXIT
- WRITE B
- WRITE G
- goto :loop
- :exit
-